hexio: unstable -> 1.0-RC1
This commit is contained in:
parent
0cee46dd21
commit
1fe6ed5392
1 changed files with 5 additions and 4 deletions
|
@ -1,18 +1,19 @@
|
||||||
{ stdenv, fetchFromGitHub, fetchurl, python, pcsclite, pth, glibc }:
|
{ stdenv, fetchFromGitHub, fetchurl, python, pcsclite, pth }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "hexio";
|
pname = "hexio";
|
||||||
name = "${pname}-${version}";
|
name = "${pname}-${version}";
|
||||||
version = "201605";
|
version = "1.0-RC1";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
sha256 = "08jxkdi0gjsi8s793f9kdlad0a58a0xpsaayrsnpn9bpmm5cgihq";
|
sha256 = "08jxkdi0gjsi8s793f9kdlad0a58a0xpsaayrsnpn9bpmm5cgihq";
|
||||||
rev = "f6f963bd0fcd2808977e0ad82dcb3100691cdd7c";
|
rev = "version-${version}";
|
||||||
owner = "vanrein";
|
owner = "vanrein";
|
||||||
repo = "hexio";
|
repo = "hexio";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ python pcsclite pth glibc ];
|
propagatedBuildInputs = [ python ];
|
||||||
|
buildInputs = [ pcsclite pth ];
|
||||||
|
|
||||||
patchPhase = ''
|
patchPhase = ''
|
||||||
substituteInPlace Makefile \
|
substituteInPlace Makefile \
|
||||||
|
|
Loading…
Reference in a new issue