Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Get rid of cabal2nix #205

Merged
merged 1 commit into from
Feb 22, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ with rec
pkgs.haskell.lib.disableExecutableProfiling (
pkgs.haskell.lib.disableLibraryProfiling (
pkgs.haskell.lib.generateOptparseApplicativeCompletion "niv" (
haskellPackages.callCabal2nix "niv" niv-source {}
(pkgs.callPackage ./foo {}).buildPackage { root = ./.; src = niv-source; }
)
)
)
Expand Down
83 changes: 83 additions & 0 deletions foo/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,83 @@
{ haskellPackages
, stdenv
, lib
}:

{
buildPackage =
attrs:
let
src = if !lib.isDerivation attrs && lib.isAttrs attrs then attrs.src else attrs;
root = if !lib.isDerivation attrs && lib.isAttrs attrs then attrs.root else attrs;
nubdeps = ds: lib.lists.sort (x: y: x < y) (
lib.unique (
map (d: lib.head (lib.splitString " " d)) ds
)
);
spec = builtins.fromJSON (builtins.readFile (root + "/package.yaml"));
commonDeps = spec.dependencies;

libraryExtraDeps =
lib.optionals
(spec ? library && spec.library ? dependencies)
spec.library.dependencies;
libraryDeps = nubdeps (commonDeps ++ libraryExtraDeps);

exeExtraDeps = lib.optionals (spec ? executables) (
lib.concatMap
(
exe: lib.optionals
(exe ? dependencies) exe.dependencies
)
(builtins.attrValues spec.executables)
);
exeDeps =
nubdeps
(
builtins.filter (x: x != spec.name)
(commonDeps ++ exeExtraDeps)
);

testExtraDeps = lib.optionals (spec ? tests) (
lib.concatMap
(
test: lib.optionals
(test ? dependencies) test.dependencies
)
(builtins.attrValues spec.tests)
);
testDeps = nubdeps (builtins.filter (x: x != spec.name) (commonDeps ++ testExtraDeps));

depsFor = depType:
map (
d:
if ! builtins.hasAttr d haskellPackages
then throw "haskellPackages does not contain dependency '${d}' needed for '${depType}'"
else
haskellPackages.${d}
);

in
haskellPackages.callPackage (
{ mkDerivation }:
haskellPackages.mkDerivation {
pname = spec.name;
version = spec.version;
inherit src;
isLibrary = builtins.hasAttr "library" spec;
isExecutable = builtins.hasAttr "executables" spec;
enableSeparateDataOutput = true;
libraryHaskellDepends = depsFor "libraryHaskellDepends" libraryDeps;
libraryToolDepends = [ haskellPackages.hpack ];
executableHaskellDepends = depsFor "executableHaskellDepends" exeDeps;
testHaskellDepends = depsFor "testHaskellDepends" testDeps;
prePatch = "hpack";
homepage = "https://github.com/${spec.github}#readme";
description = spec.synopsis;
license =
if builtins.hasAttr "license" spec && spec.license == "MIT"
then stdenv.lib.licenses.mit
else throw "Don't know how to handle license: ${builtins.toJSON spec.license}";
}
) {};
}
140 changes: 73 additions & 67 deletions package.yaml
Original file line number Diff line number Diff line change
@@ -1,67 +1,73 @@
name: niv
version: 0.2.13
license: MIT
author: Nicolas Mattia <nicolas@nmattia.com>
maintainer: Nicolas Mattia <nicolas@nmattia.com>
copyright: (c) 2019 Nicolas Mattia
category: Development
github: nmattia/niv
synopsis: Easy dependency management for Nix projects
description: Easy dependency management for Nix projects.

ghc-options:
- -Wall

# For macOS: https://github.com/gibiansky/IHaskell/issues/942
- -optP-Wno-nonportable-include-path

data-files:
- nix/sources.nix

extra-source-files:
- README.md

dependencies:
- aeson
- aeson-pretty
- ansi-terminal
- base < 5
- bytestring
- directory
- file-embed
- filepath
- hashable
- http-conduit
- mtl
- optparse-applicative
- process
- profunctors
- pureMD5
- string-qq
- text
- unliftio
- unordered-containers

library:
source-dirs:
- src
dependencies:
- aeson
- tasty
- tasty-hunit
- unordered-containers

executables:
niv:
main: Niv.main
source-dirs: app
dependencies:
- niv

tests:
unit:
main: NivTest.main
source-dirs: app
dependencies:
- tasty
- niv
{
"name": "niv",
"version": "0.2.13",
"license": "MIT",
"author": "Nicolas Mattia <nicolas@nmattia.com>",
"maintainer": "Nicolas Mattia <nicolas@nmattia.com>",
"copyright": "(c) 2019 Nicolas Mattia",
"category": "Development",
"github": "nmattia/niv",
"synopsis": "Easy dependency management for Nix projects",
"description": "Easy dependency management for Nix projects.",
"ghc-options": [
"-Wall",
"-optP-Wno-nonportable-include-path"
],
"data-files": [
"nix/sources.nix"
],
"extra-source-files": [
"README.md"
],
"dependencies": [
"aeson",
"aeson-pretty",
"ansi-terminal",
"base < 5",
"bytestring",
"directory",
"file-embed",
"filepath",
"hashable",
"http-conduit",
"mtl",
"optparse-applicative",
"process",
"profunctors",
"pureMD5",
"string-qq",
"text",
"unliftio",
"unordered-containers"
],
"library": {
"source-dirs": [
"src"
],
"dependencies": [
"aeson",
"tasty",
"tasty-hunit",
"unordered-containers"
]
},
"executables": {
"niv": {
"main": "Niv.main",
"source-dirs": "app",
"dependencies": [
"niv"
]
}
},
"tests": {
"unit": {
"main": "NivTest.main",
"source-dirs": "app",
"dependencies": [
"tasty",
"niv"
]
}
}
}