Merge pull request #35045 from bignaux/idsk

idsk : init at unstable-2018-02-11
This commit is contained in:
lewo 2018-02-20 18:04:47 +01:00 committed by GitHub
commit a1526e52b1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 32 additions and 0 deletions

View file

@ -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
'';
}

View file

@ -20036,6 +20036,8 @@ with pkgs;
epkowa = callPackage ../misc/drivers/epkowa { };
idsk = callPackage ../tools/filesystems/idsk { };
illum = callPackage ../tools/system/illum { };
# using the new configuration style proposal which is unstable