make it a nix flake
This commit is contained in:
parent
fd9e5545f5
commit
5c0134bd06
8 changed files with 119 additions and 1 deletions
2
tickLeiste-aeson/default.nix
Normal file
2
tickLeiste-aeson/default.nix
Normal file
|
@ -0,0 +1,2 @@
|
|||
{pkgs ? import <nixpkgs> {}, ...}:
|
||||
pkgs.haskellPackages.callPackage ./tickLeiste-aeson.nix {}
|
12
tickLeiste-aeson/tickLeiste-aeson.nix
Normal file
12
tickLeiste-aeson/tickLeiste-aeson.nix
Normal file
|
@ -0,0 +1,12 @@
|
|||
{ mkDerivation, aeson, base, hpack, lib, text, tickLeiste, uuid }:
|
||||
mkDerivation {
|
||||
pname = "tickLeiste-aeson";
|
||||
version = "0.1.0.0";
|
||||
src = ./.;
|
||||
libraryHaskellDepends = [ aeson base text tickLeiste uuid ];
|
||||
libraryToolDepends = [ hpack ];
|
||||
testHaskellDepends = [ aeson base text tickLeiste uuid ];
|
||||
prePatch = "hpack";
|
||||
homepage = "https://github.com/githubuser/tickLeiste-aeson#readme";
|
||||
license = lib.licenses.bsd3;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue