nixpkgs/pkgs/development/libraries/liblqr-1/default.nix
Vladimír Čunát 96d41e393d
treewide: purge maintainers.urkud
It's sad, but he's been inactive for the last five years.
Keeping such people in meta.maintainers is counter-productive.
2017-03-27 19:52:29 +02:00

21 lines
535 B
Nix

{ stdenv, fetchurl, pkgconfig, glib }:
stdenv.mkDerivation rec {
name = "liblqr-1-0.4.2";
src = fetchurl {
url = "${meta.homepage}/local--files/en:download-page/${name}.tar.bz2";
sha256 = "0dzikxzjz5zmy3vnydh90aqk23q0qm8ykx6plz6p4z90zlp84fhp";
};
buildInputs = [ pkgconfig ];
propagatedBuildInputs = [ glib ];
meta = with stdenv.lib; {
homepage = http://liblqr.wikidot.com;
description = "Seam-carving C/C++ library called Liquid Rescaling";
platforms = platforms.all;
maintainers = [ ];
};
}