diff options
author | tv <tv@krebsco.de> | 2021-02-23 22:07:08 +0100 |
---|---|---|
committer | tv <tv@krebsco.de> | 2021-02-23 22:07:08 +0100 |
commit | 758a9422f55db2ce897d90d87348c7bfc55abb0d (patch) | |
tree | f65efb2f58d28ac64432f30038da8bd28c5ce7e8 /krebs/5pkgs | |
parent | 840f38b8e9332456e374f14157723105740f9ad3 (diff) |
xmonad-aeson: init at 1.0.0
Diffstat (limited to 'krebs/5pkgs')
-rw-r--r-- | krebs/5pkgs/haskell/xmonad-aeson.nix | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/krebs/5pkgs/haskell/xmonad-aeson.nix b/krebs/5pkgs/haskell/xmonad-aeson.nix new file mode 100644 index 000000000..3fccab469 --- /dev/null +++ b/krebs/5pkgs/haskell/xmonad-aeson.nix @@ -0,0 +1,13 @@ +{ mkDerivation, aeson, base, fetchgit, stdenv, X11-aeson, xmonad }: +mkDerivation { + pname = "xmonad-aeson"; + version = "1.0.0"; + src = fetchgit { + url = "https://cgit.krebsco.de/xmonad-aeson"; + sha256 = "0l1gna6p1498vzm6kj0ywj0i7775mz5n7k9nymwggvfb1pyxv3h9"; + rev = "a95f652b150f17db3f2439214a6346335d6d8d89"; + fetchSubmodules = true; + }; + libraryHaskellDepends = [ aeson base X11-aeson xmonad ]; + license = stdenv.lib.licenses.mit; +} |