blob: fc983d630a2c4a155908844834dd99f82e01b263 (
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.1.0";
src = fetchgit {
url = "https://cgit.ni.krebsco.de/xoutinfo";
hash = "sha256-QSyCal5E7O1JBlZ7OV3aM8j68YozKyKgYhL2HYFTsvg=";
rev = "0.1.1.0";
fetchSubmodules = true;
};
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [ aeson base bytestring X11 ];
license = lib.licenses.wtfpl;
mainProgram = "xoutinfo";
}
|