nixpkgs/pkgs/development/libraries/schroedinger/default.nix
Silvan Mosberger f5fa5fa4d6 pkgs: refactor needless quoting of homepage meta attribute (#27809)
* pkgs: refactor needless quoting of homepage meta attribute

A lot of packages are needlessly quoting the homepage meta attribute
(about 1400, 22%), this commit refactors all of those instances.

* pkgs: Fixing some links that were wrongfully unquoted in the previous
commit

* Fixed some instances
2017-08-01 22:03:30 +02:00

28 lines
687 B
Nix

{ stdenv, fetchurl, orc, pkgconfig }:
stdenv.mkDerivation {
name = "schroedinger-1.0.11";
src = fetchurl {
urls = [
http://diracvideo.org/download/schroedinger/schroedinger-1.0.11.tar.gz
http://download.videolan.org/contrib/schroedinger-1.0.11.tar.gz
];
sha256 = "04prr667l4sn4zx256v1z36a0nnkxfdqyln48rbwlamr6l3jlmqy";
};
outputs = [ "out" "dev" "devdoc" ];
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ orc ];
doCheck = true;
meta = with stdenv.lib; {
homepage = http://diracvideo.org/;
maintainers = [ maintainers.spwhitt ];
license = [ licenses.mpl11 licenses.lgpl2 licenses.mit ];
platforms = platforms.unix;
};
}