~ruther/nix-envs

ref: 4ac888d8171c0d255d18340c8e59f77523a236fc nix-envs/programs/qtmips/qtmips-pkg.nix -rw-r--r-- 408 bytes
4ac888d8 — Rutherther feat: add QtMips program 1 year, 6 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
{ lib, pkgs, system, stdenv, cmake, wrapQtAppsHook, qtbase, qtsvg }:

stdenv.mkDerivation rec {
    name = "QtMips";
    src = pkgs.fetchFromGitHub {
      owner = "cvut";
      repo = "QtMips";
      rev = "3d8ea4a7a2aa4c95e3e270111f6128686203913c";
      hash = "sha256-S1d64m3niAiDtnT8EpgoAUb6shZK/mv8MQM95ytipuI=";
    };
    nativeBuildInputs = [ cmake wrapQtAppsHook ];
    buildInputs = [ qtbase ];
}
Do not follow this link