mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 22:50:49 +00:00
libixp-hg: init at 2012-12-02
This commit is contained in:
parent
3e0fab3864
commit
b02921d4ca
27
pkgs/development/libraries/libixp-hg/default.nix
Normal file
27
pkgs/development/libraries/libixp-hg/default.nix
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
{ stdenv, fetchhg, txt2tags }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
rev = "148";
|
||||||
|
version = "hg-2012-12-02";
|
||||||
|
name = "libixp-${version}";
|
||||||
|
|
||||||
|
src = fetchhg {
|
||||||
|
url = https://code.google.com/p/libixp/;
|
||||||
|
sha256 = "1nbnh2ff18fsrs28mx4bfgncq1d1nw5dd6iwhwvv5x2g9w7q5vvj";
|
||||||
|
inherit rev;
|
||||||
|
};
|
||||||
|
|
||||||
|
configurePhase = ''
|
||||||
|
sed -i -e "s|^PREFIX.*=.*$|PREFIX = $out|" config.mk
|
||||||
|
'';
|
||||||
|
|
||||||
|
buildInputs = [ txt2tags ];
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
homepage = https://code.google.com/p/libixp/;
|
||||||
|
description = "Portable, simple C-language 9P client and server libary";
|
||||||
|
maintainers = with stdenv.lib.maintainers; [ kovirobi ];
|
||||||
|
license = stdenv.lib.licenses.mit;
|
||||||
|
inherit version;
|
||||||
|
};
|
||||||
|
}
|
|
@ -7560,6 +7560,8 @@ let
|
||||||
inherit fetchurl stdenv;
|
inherit fetchurl stdenv;
|
||||||
});
|
});
|
||||||
|
|
||||||
|
libixp_hg = callPackage ../development/libraries/libixp-hg { };
|
||||||
|
|
||||||
libyaml = callPackage ../development/libraries/libyaml { };
|
libyaml = callPackage ../development/libraries/libyaml { };
|
||||||
|
|
||||||
libyamlcpp = callPackage ../development/libraries/libyaml-cpp { };
|
libyamlcpp = callPackage ../development/libraries/libyaml-cpp { };
|
||||||
|
|
Loading…
Reference in a new issue