mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 05:00:16 +00:00
Add liblqr-1
svn path=/nixpkgs/trunk/; revision=21559
This commit is contained in:
parent
d8c07cc4d6
commit
19cc1226d4
20
pkgs/development/libraries/liblqr-1/default.nix
Normal file
20
pkgs/development/libraries/liblqr-1/default.nix
Normal file
|
@ -0,0 +1,20 @@
|
|||
{ stdenv, fetchurl, pkgconfig, glib }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "liblqr-1-0.4.1";
|
||||
src = fetchurl {
|
||||
url = "${meta.homepage}/local--files/en:download-page/${name}.tar.bz2";
|
||||
sha256 = "02g90wag7xi5rjlmwq8h0qs666b1i2sa90s4303hmym40il33nlz";
|
||||
};
|
||||
|
||||
buildInputs = [ pkgconfig ];
|
||||
propagatedBuildInputs = [ glib ];
|
||||
configureFlags = "--enable-install-man";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = http://liblqr.wikidot.com;
|
||||
description = "Seam-carving C/C++ library called Liquid Rescaling";
|
||||
platforms = platforms.all;
|
||||
maintainers = [ maintainers.urkud ];
|
||||
};
|
||||
}
|
|
@ -4405,6 +4405,11 @@ let
|
|||
useGTK = getPkgConfig "libiodbc" "gtk" false;
|
||||
};
|
||||
|
||||
liblqr1 = makeOverridable (import ../development/libraries/liblqr-1) {
|
||||
inherit stdenv fetchurl pkgconfig;
|
||||
inherit (gnome) glib;
|
||||
};
|
||||
|
||||
libnice = import ../development/libraries/libnice {
|
||||
inherit stdenv fetchurl pkgconfig;
|
||||
inherit (gnome) glib;
|
||||
|
|
Loading…
Reference in a new issue