mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
jxrlib: init at 1.1
This commit is contained in:
parent
b529b81be3
commit
546191f4cf
28
pkgs/development/libraries/jxrlib/default.nix
Normal file
28
pkgs/development/libraries/jxrlib/default.nix
Normal file
@ -0,0 +1,28 @@
|
||||
{ stdenv, fetchFromGitHub, python }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "${pname}-${version}";
|
||||
pname = "jxrlib";
|
||||
version = "1.1";
|
||||
|
||||
# Use the source from a fork on github because CodePlex does not
|
||||
# deliver an easily downloadable tarball.
|
||||
src = fetchFromGitHub {
|
||||
owner = "4creators";
|
||||
repo = pname;
|
||||
rev = "f7521879862b9085318e814c6157490dd9dbbdb4";
|
||||
sha256 = "0rk3hbh00nw0wgbfbqk1szrlfg3yq7w6ar16napww3nrlm9cj65w";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ python ];
|
||||
|
||||
makeFlags = [ "DIR_INSTALL=$(out)" "SHARED=1" ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Implementation of the JPEG XR image codec standard";
|
||||
homepage = https://jxrlib.codeplex.com;
|
||||
license = licenses.bsd2;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ romildo ];
|
||||
};
|
||||
}
|
@ -10261,6 +10261,8 @@ with pkgs;
|
||||
|
||||
jsonrpc-glib = callPackage ../development/libraries/jsonrpc-glib { };
|
||||
|
||||
jxrlib = callPackage ../development/libraries/jxrlib { };
|
||||
|
||||
libjson = callPackage ../development/libraries/libjson { };
|
||||
|
||||
libb64 = callPackage ../development/libraries/libb64 { };
|
||||
|
Loading…
Reference in New Issue
Block a user