96d41e393d
It's sad, but he's been inactive for the last five years. Keeping such people in meta.maintainers is counter-productive.
23 lines
480 B
Nix
23 lines
480 B
Nix
{ stdenv, fetchurl, cmake, qrencode, qt4, libdmtx }:
|
|
|
|
let v = "1.0"; in
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "prison-${v}";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://kde/stable/prison/${v}/src/${name}.tar.gz";
|
|
sha256 = "08hkzzda36jpdywjqlyzcvli7cx17h4l9yffzsdnhdd788n28krr";
|
|
};
|
|
|
|
buildInputs = [ qt4 qrencode libdmtx ];
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
meta = {
|
|
description = "Qt4 library for QR-codes";
|
|
maintainers = [ ];
|
|
inherit (qt4.meta) platforms;
|
|
};
|
|
}
|