Merge pull request #35045 from bignaux/idsk
idsk : init at unstable-2018-02-11
This commit is contained in:
commit
a1526e52b1
|
@ -0,0 +1,30 @@
|
||||||
|
{ stdenv, fetchFromGitHub, cmake }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
|
||||||
|
repo = "idsk";
|
||||||
|
version = "unstable-2018-02-11";
|
||||||
|
rev = "1846729ac3432aa8c2c0525be45cfff8a513e007";
|
||||||
|
name = "${repo}-${version}";
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Manipulating CPC dsk images and files";
|
||||||
|
homepage = https://github.com/cpcsdk/idsk ;
|
||||||
|
license = "unknown";
|
||||||
|
maintainers = [ maintainers.genesis ];
|
||||||
|
platforms = platforms.linux;
|
||||||
|
};
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
inherit rev repo;
|
||||||
|
owner = "cpcsdk";
|
||||||
|
sha256 = "0d891lvf2nc8bys8kyf69k54rf3jlwqrcczbff8xi0w4wsiy5ckv";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ cmake ];
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
mkdir -p $out/bin
|
||||||
|
cp iDSK $out/bin
|
||||||
|
'';
|
||||||
|
}
|
|
@ -20036,6 +20036,8 @@ with pkgs;
|
||||||
|
|
||||||
epkowa = callPackage ../misc/drivers/epkowa { };
|
epkowa = callPackage ../misc/drivers/epkowa { };
|
||||||
|
|
||||||
|
idsk = callPackage ../tools/filesystems/idsk { };
|
||||||
|
|
||||||
illum = callPackage ../tools/system/illum { };
|
illum = callPackage ../tools/system/illum { };
|
||||||
|
|
||||||
# using the new configuration style proposal which is unstable
|
# using the new configuration style proposal which is unstable
|
||||||
|
|
Loading…
Reference in New Issue