blob: 64b6f87b1eed5a62bee9a09434f6598b1ce57628 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
{ mkDerivation, aeson, base, bytestring, fetchgit, lib, X11 }:
mkDerivation {
pname = "xoutinfo";
version = "0.1.0.0";
src = fetchgit {
url = "https://cgit.ni.krebsco.de/xoutinfo";
sha256 = "1g3s9vyy7bpsl2zjiq6kk16c8hhf3n2yz4lv3ic0qy0n6wn6qqi8";
rev = "cf7377886a55e36701bd0d5ce7c723aa6d7bd9bd";
fetchSubmodules = true;
};
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [ aeson base bytestring X11 ];
license = lib.licenses.wtfpl;
mainProgram = "xoutinfo";
}
|