mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
13 lines
267 B
Nix
13 lines
267 B
Nix
{ writeShellApplication, cabal2nix }:
|
|
|
|
writeShellApplication {
|
|
name = "update-changelog-d";
|
|
runtimeInputs = [
|
|
cabal2nix
|
|
];
|
|
text = ''
|
|
cd pkgs/development/misc/haskell/changelog-d
|
|
cabal2nix https://codeberg.org/fgaz/changelog-d >default.nix
|
|
'';
|
|
}
|