Merge pull request #35045 from bignaux/idsk

idsk : init at unstable-2018-02-11

authored by lewo and committed by GitHub a1526e52 39ff4984

+32
+30
pkgs/tools/filesystems/idsk/default.nix
···
··· 1 + { stdenv, fetchFromGitHub, cmake }: 2 + 3 + stdenv.mkDerivation rec { 4 + 5 + repo = "idsk"; 6 + version = "unstable-2018-02-11"; 7 + rev = "1846729ac3432aa8c2c0525be45cfff8a513e007"; 8 + name = "${repo}-${version}"; 9 + 10 + meta = with stdenv.lib; { 11 + description = "Manipulating CPC dsk images and files"; 12 + homepage = https://github.com/cpcsdk/idsk ; 13 + license = "unknown"; 14 + maintainers = [ maintainers.genesis ]; 15 + platforms = platforms.linux; 16 + }; 17 + 18 + src = fetchFromGitHub { 19 + inherit rev repo; 20 + owner = "cpcsdk"; 21 + sha256 = "0d891lvf2nc8bys8kyf69k54rf3jlwqrcczbff8xi0w4wsiy5ckv"; 22 + }; 23 + 24 + nativeBuildInputs = [ cmake ]; 25 + 26 + installPhase = '' 27 + mkdir -p $out/bin 28 + cp iDSK $out/bin 29 + ''; 30 + }
+2
pkgs/top-level/all-packages.nix
··· 20036 20037 epkowa = callPackage ../misc/drivers/epkowa { }; 20038 20039 illum = callPackage ../tools/system/illum { }; 20040 20041 # using the new configuration style proposal which is unstable
··· 20036 20037 epkowa = callPackage ../misc/drivers/epkowa { }; 20038 20039 + idsk = callPackage ../tools/filesystems/idsk { }; 20040 + 20041 illum = callPackage ../tools/system/illum { }; 20042 20043 # using the new configuration style proposal which is unstable