mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
libfpx: Add derivation
This commit is contained in:
parent
5d2fd00457
commit
3a2df159e6
2 changed files with 20 additions and 0 deletions
18
pkgs/development/libraries/libfpx/default.nix
Normal file
18
pkgs/development/libraries/libfpx/default.nix
Normal file
|
@ -0,0 +1,18 @@
|
|||
{ stdenv, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "libfpx-1.3.1-4";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://imagemagick/delegates/${name}.tar.xz";
|
||||
sha256 = "0pbvxbp30zqjpc0q71qbl15cb47py74c4d6a8qv1mqa6j81pb233";
|
||||
};
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = http://www.imagemagick.org;
|
||||
description = "A library for manipulating FlashPIX images";
|
||||
license = "Flashpix";
|
||||
platforms = platforms.all;
|
||||
maintainers = with maintainers; [ wkennington ];
|
||||
};
|
||||
}
|
|
@ -6314,6 +6314,8 @@ let
|
|||
|
||||
libfprint = callPackage ../development/libraries/libfprint/master.nix { };
|
||||
|
||||
libfpx = callPackage ../development/libraries/libfpx { };
|
||||
|
||||
libgadu = callPackage ../development/libraries/libgadu { };
|
||||
|
||||
libgdata = gnome3.libgdata;
|
||||
|
|
Loading…
Reference in a new issue